Slow Test ^^^^^ **Definition:** * Slow tests are kind of tests which take long enough to run **Also Known As:** * Long Running Test, The Slow Poke **Code Example:** .. code-block:: ruby class SlowTest < Test::Unit::TestCase def test_fast assert true end def test_slow MyClass.slow_method assert true end end **References:** .. admonition:: Quality attributes * :octicon:`file-code;1em` - Code Example * :octicon:`comment-discussion;1em` - Cause and Effect * :octicon:`graph;1em` - Frequency * :octicon:`sync;1em` - Refactoring * `A testing anti-pattern safari `_ :octicon:`file-code;1em` :octicon:`comment-discussion;1em` * `Automatic generation of smell-free unit tests `_ :octicon:`comment-discussion;1em` * `Categorising Test Smells `_ :octicon:`graph;1em` * `Inspecting Automated Test Code: A Preliminary Study `_ :octicon:`graph;1em` * `Investigating into Automated Test Patterns in Erratic Tests by Considering Complex Objects `_ :octicon:`comment-discussion;1em` * `What We Know About Smells in Software Test Code `_ * `xUnit test patterns: Refactoring test code `_ :octicon:`comment-discussion;1em` :octicon:`sync;1em`